home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / rlcompleter.pyo (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  5KB  |  168 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.4)
  3.  
  4. '''Word completion for GNU readline 2.0.
  5.  
  6. This requires the latest extension to the readline module. The completer
  7. completes keywords, built-ins and globals in a selectable namespace (which
  8. defaults to __main__); when completing NAME.NAME..., it evaluates (!) the
  9. expression up to the last dot and completes its attributes.
  10.  
  11. It\'s very cool to do "import sys" type "sys.", hit the
  12. completion key (twice), and see the list of names defined by the
  13. sys module!
  14.  
  15. Tip: to use the tab key as the completion key, call
  16.  
  17.     readline.parse_and_bind("tab: complete")
  18.  
  19. Notes:
  20.  
  21. - Exceptions raised by the completer function are *ignored* (and
  22. generally cause the completion to fail).  This is a feature -- since
  23. readline sets the tty device in raw (or cbreak) mode, printing a
  24. traceback wouldn\'t work well without some complicated hoopla to save,
  25. reset and restore the tty state.
  26.  
  27. - The evaluation of the NAME.NAME... form may cause arbitrary
  28. application defined code to be executed if an object with a
  29. __getattr__ hook is found.  Since it is the responsibility of the
  30. application (or the user) to enable this feature, I consider this an
  31. acceptable risk.  More complicated expressions (e.g. function calls or
  32. indexing operations) are *not* evaluated.
  33.  
  34. - GNU readline is also used by the built-in functions input() and
  35. raw_input(), and thus these also benefit/suffer from the completer
  36. features.  Clearly an interactive application can benefit by
  37. specifying its own completer function and using raw_input() for all
  38. its input.
  39.  
  40. - When the original stdin is not a tty device, GNU readline is never
  41. used, and this module (and the readline module) are silently inactive.
  42.  
  43. '''
  44. import readline
  45. import __builtin__
  46. import __main__
  47. __all__ = [
  48.     'Completer']
  49.  
  50. class Completer:
  51.     
  52.     def __init__(self, namespace = None):
  53.         '''Create a new completer for the command line.
  54.  
  55.         Completer([namespace]) -> completer instance.
  56.  
  57.         If unspecified, the default namespace where completions are performed
  58.         is __main__ (technically, __main__.__dict__). Namespaces should be
  59.         given as dictionaries.
  60.  
  61.         Completer instances should be used as the completion mechanism of
  62.         readline via the set_completer() call:
  63.  
  64.         readline.set_completer(Completer(my_namespace).complete)
  65.         '''
  66.         if namespace and not isinstance(namespace, dict):
  67.             raise TypeError, 'namespace must be a dictionary'
  68.         
  69.         if namespace is None:
  70.             self.use_main_ns = 1
  71.         else:
  72.             self.use_main_ns = 0
  73.             self.namespace = namespace
  74.  
  75.     
  76.     def complete(self, text, state):
  77.         """Return the next possible completion for 'text'.
  78.  
  79.         This is called successively with state == 0, 1, 2, ... until it
  80.         returns None.  The completion should begin with 'text'.
  81.  
  82.         """
  83.         if self.use_main_ns:
  84.             self.namespace = __main__.__dict__
  85.         
  86.         if state == 0:
  87.             if '.' in text:
  88.                 self.matches = self.attr_matches(text)
  89.             else:
  90.                 self.matches = self.global_matches(text)
  91.         
  92.         
  93.         try:
  94.             return self.matches[state]
  95.         except IndexError:
  96.             return None
  97.  
  98.  
  99.     
  100.     def global_matches(self, text):
  101.         '''Compute matches when text is a simple name.
  102.  
  103.         Return a list of all keywords, built-in functions and names currently
  104.         defined in self.namespace that match.
  105.  
  106.         '''
  107.         import keyword as keyword
  108.         matches = []
  109.         n = len(text)
  110.         for list in [
  111.             keyword.kwlist,
  112.             __builtin__.__dict__,
  113.             self.namespace]:
  114.             for word in list:
  115.                 if word[:n] == text and word != '__builtins__':
  116.                     matches.append(word)
  117.                     continue
  118.             
  119.         
  120.         return matches
  121.  
  122.     
  123.     def attr_matches(self, text):
  124.         '''Compute matches when text contains a dot.
  125.  
  126.         Assuming the text is of the form NAME.NAME....[NAME], and is
  127.         evaluatable in self.namespace, it will be evaluated and its attributes
  128.         (as revealed by dir()) are used as possible completions.  (For class
  129.         instances, class members are also considered.)
  130.  
  131.         WARNING: this can still invoke arbitrary C code, if an object
  132.         with a __getattr__ hook is evaluated.
  133.  
  134.         '''
  135.         import re as re
  136.         m = re.match('(\\w+(\\.\\w+)*)\\.(\\w*)', text)
  137.         if not m:
  138.             return None
  139.         
  140.         (expr, attr) = m.group(1, 3)
  141.         object = eval(expr, self.namespace)
  142.         words = dir(object)
  143.         if hasattr(object, '__class__'):
  144.             words.append('__class__')
  145.             words = words + get_class_members(object.__class__)
  146.         
  147.         matches = []
  148.         n = len(attr)
  149.         for word in words:
  150.             if word[:n] == attr and word != '__builtins__':
  151.                 matches.append('%s.%s' % (expr, word))
  152.                 continue
  153.         
  154.         return matches
  155.  
  156.  
  157.  
  158. def get_class_members(klass):
  159.     ret = dir(klass)
  160.     if hasattr(klass, '__bases__'):
  161.         for base in klass.__bases__:
  162.             ret = ret + get_class_members(base)
  163.         
  164.     
  165.     return ret
  166.  
  167. readline.set_completer(Completer().complete)
  168.